From: Glenn Morris Date: Sat, 5 Feb 2011 22:03:44 +0000 (-0800) Subject: * lisp/emacs-lisp/cl-macs.el (return-from): Fix doc typo. X-Git-Tag: archive/raspbian/1%29.2+1-2+rpi1~1^2~421^2~18^2~59 X-Git-Url: https://dgit.raspbian.org/%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:///%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:/?a=commitdiff_plain;h=92b35af1fcea1bdb57d93f38ffc63046d81eadcc;p=emacs.git * lisp/emacs-lisp/cl-macs.el (return-from): Fix doc typo. --- diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 6b386bfc50a..f032f0c3396 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,7 @@ +2011-02-05 Glenn Morris + + * emacs-lisp/cl-macs.el (return-from): Fix doc typo. + 2011-02-04 Glenn Morris * calendar/diary-lib.el (diary-font-lock-keywords): diff --git a/lisp/emacs-lisp/cl-macs.el b/lisp/emacs-lisp/cl-macs.el index 94c2312541c..4061e570cef 100644 --- a/lisp/emacs-lisp/cl-macs.el +++ b/lisp/emacs-lisp/cl-macs.el @@ -622,7 +622,7 @@ This is equivalent to `(return-from nil RESULT)'." ;;;###autoload (defmacro return-from (name &optional result) "Return from the block named NAME. -This jump out to the innermost enclosing `(block NAME ...)' form, +This jumps out to the innermost enclosing `(block NAME ...)' form, returning RESULT from that form (or nil if RESULT is omitted). This is compatible with Common Lisp, but note that `defun' and `defmacro' do not create implicit blocks as they do in Common Lisp."